From: kaf24@firebug.cl.cam.ac.uk Date: Fri, 14 Jul 2006 09:23:52 +0000 (+0100) Subject: [powerpc] print page->count_info as unsigned long X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15850 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=89fc30db76f956ef28236a3797ec453e05ef7382;p=xen.git [powerpc] print page->count_info as unsigned long Signed-off-by: Hollis Blanchard --- diff --git a/xen/common/memory.c b/xen/common/memory.c index cd041e8585..8ed125e98d 100644 --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -174,9 +174,9 @@ guest_remove_page( { /* We'll make this a guest-visible error in future, so take heed! */ DPRINTK("Dom%d freeing in-use page %lx (pseudophys %lx):" - " count=%x type=%lx\n", + " count=%lx type=%lx\n", d->domain_id, mfn, get_gpfn_from_mfn(mfn), - page->count_info, page->u.inuse.type_info); + (unsigned long)page->count_info, page->u.inuse.type_info); } guest_physmap_remove_page(d, gmfn, mfn);